home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / 7UP_PD / FEXIST.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-23  |  386 b   |  16 lines

  1. /*****************************************************************************
  2. *
  3. *                                              7UP
  4. *                                        Modul: FEXIST.C
  5. *                                     (c) by TheoSoft '94
  6. *
  7. *****************************************************************************/
  8. #include <stdio.h>
  9. #include <ext.h>
  10.  
  11. int fexist(char *pathname)
  12. {
  13.     struct ffblk fileRec;
  14.     return(!findfirst(pathname,&fileRec,0));
  15. }
  16.